home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / include / scribus-ng / sccombobox.h < prev    next >
Encoding:
C/C++ Source or Header  |  2007-08-31  |  745 b   |  34 lines

  1. /*
  2. For general Scribus (>=1.3.2) copyright and licensing information please refer
  3. to the COPYING file provided with the program. Following this notice may exist
  4. a copyright and/or license notice that predates the release of Scribus 1.3.2
  5. for which a new license (GPL+exception) is in place.
  6. */
  7. /*
  8.  *  sccombobox.h
  9.  *  ScribusCVS
  10.  *
  11.  *  Created by Andreas Vox on 01.10.05.
  12.  *  Copyright 2005 under GPL2. All rights reserved.
  13.  *
  14.  */
  15.  
  16. #ifndef SCCOMBOBOX_H
  17. #define SCCOMBOBOX_H
  18.  
  19. #include <QComboBox>
  20.  
  21. /*!
  22.     \class ScComboBox sccombobox.h
  23.     \brief The ScComboBox widget always uses a listbox instead of a popup, 
  24.            independent of any QStyle.
  25. */
  26. class ScComboBox : public QComboBox
  27. {
  28.  
  29. public: 
  30.     ScComboBox( QWidget* parent=0);
  31. };
  32.  
  33. #endif
  34.